home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51741 / 51741.xpi / chrome / content / lib / tabs.js < prev    next >
Text File  |  2010-02-01  |  361b  |  15 lines

  1. (function()
  2. {
  3.     //returns the tab context menu
  4.     this.tabContextMenu = function()
  5.     {
  6.         if(!this.getBrowserElement('tabContextMenu'))
  7.             return document.getAnonymousElementByAttribute(this.getBrowserElement("content") , "anonid", "tabContextMenu");
  8.         else
  9.             return this.getBrowserElement('tabContextMenu');
  10.     }
  11.  
  12.     return null;
  13.  
  14. }).apply(metaTitleDescriptionOnTop);
  15.